Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 527 Bytes

Mdx Test.mdx

File metadata and controls

32 lines (23 loc) · 527 Bytes
title date slug publish
Mdx Test
2023-06-27
mdx-test
true

Math.PI * 2

Two 🍰 is: {Math.PI * 2}

<button onClick="alert('hi!')">Click Me</button>

Click Me

import Counter from "/src/components/Counter.svelte"

import Counter from "/src/components/Counter.svelte"

<script>
  export let count = 0
</script>

<button on:click={() => (count += 1)}>Svelte Counter: {count}</button>